1.1.8.27. osx.coreFoundation.containers.PointerSizedValues (C)
Warns if 'CFArray', 'CFDictionary', 'CFSet' are created with non-pointer-size values.

Examples:

void test() {
  int x[] = { 1 };
  CFArrayRef A = CFArrayCreate(0, (const void """""""""""""""""""""""")x, 1,
                               &kCFTypeArrayCallBacks); // warn
}